This page contains a bunch of HTML Elements and text. You can copy the source code and use it test out various CSS Properties. For testing purposes, you may use internal styles. Recall that these CSS rules are placed in between the head
tags using the following format:
<style type="text/css">
selector {
property: value
}
</style>
This is a test paragraph.
This is a test paragraph.
This is a test paragraph.
This is a test paragraph.
This is a test paragraph.
This is a test paragraph.
This is a normal paragraph (p
element). To add some length to it, let us mention that this page was primarily written for testing the effect of user style sheets. You can use it for various other purposes as well, like just checking how your browser displays various HTML elements.
This is another paragraph. I think it needs to be added that the set of elements tested is not exhaustive in any sense. I have selected those elements for which it can make sense to write user style sheet rules, in my opinion.
div
element. Authors may use such elements instead of paragraph markup for various reasons. (End of div
.)This is a block quotation containing a single paragraph. Well, not quite, since this is not really quoted text, but I hope you understand the point. After all, this page does not use HTML markup very normally anyway.
The following contains links to the Comm-244 home page
Comm-244 Website absolute link, What I know page for class relative link
This is a paragraph before an unordered list (ul
). Note that the spacing between a paragraph and a list before or after that is hard to tune in a user style sheet. You can't guess which paragraphs are logically related to a list, e.g. as a "list header".
This is a paragraph before a ordered list (ol
). Note that the spacing between a paragraph and a list before or after that is hard to tune in a user style sheet. You can't guess which paragraphs are logically related to a list, e.g. as a "list header".
This is a paragraph before a definition list (dl
). In principle, such a list should consist of terms and associated definitions. But many authors use dl
elements for fancy "layout" things. Usually the effect is not too bad, if you design user style sheet rules for dl
which are suitable for real definition lists.